@charset "UTF-8";
@font-face {
  font-family: "Gilroy";
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Gilroy-Regular.woff") format("woff"), url("../fonts/Gilroy-Regular.ttf") format("truetype"), url("../fonts/Gilroy-Regular.eot") format("embedded-opentype");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Gilroy-Bold.woff") format("woff"), url("../fonts/Gilroy-Bold.ttf") format("truetype"), url("../fonts/Gilroy-Bold.eot") format("embedded-opentype");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 700;
  font-style: italic;
  font-display: swap;
  src: url("../fonts/Gilroy-BoldItalic.woff") format("woff"), url("../fonts/Gilroy-BoldItalic.ttf") format("truetype"), url("../fonts/Gilroy-BoldItalic.eot") format("embedded-opentype");
}
@font-face {
  font-family: "Gilroy";
  font-weight: 900;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/Gilroy-Black.woff") format("woff"), url("../fonts/Gilroy-Black.ttf") format("truetype"), url("../fonts/Gilroy-Black.eot") format("embedded-opentype");
}
html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
  backface-visibility: hidden;
  margin: 0;
  padding: 0;
}

:root {
  --white: #ffffff;
  --white-opacity: 219, 232, 255;
  --black: #2f3d57;
  --black-opacity: 47, 61, 87;
  --dark: #2f3d57;
  --dark-opacity: 47, 61, 87;
  --light-blue: #b1c7f0;
  --light-blue-opacity: 177, 199, 240;
  --blue: #2f4f8a;
  --blue-opacity: 47, 79, 138;
  --dark-blue: #2f3d57;
  --pale-blue: #dbe8ff;
  --red: #a8c7ff;
  --red-opacity: 168, 199, 255;
  --red-dark: #2f4f8a;
  --red-dark-opacity: 47, 79, 138;
  --blue-gradient: linear-gradient(270deg, #2f4f8a, #b1c7f0);
  --blue-gradient-revert: linear-gradient(to right, #2f4f8a, #b1c7f0);
  --red-gradient: linear-gradient(270deg, #2f4f8a, #a8c7ff);
  --color-gradient: linear-gradient(175deg, #dbe8ff, #2f4f8a, #a8c7ff);
  --grey-dark: #2f3d57;
  --grey-dark-opacity: 47, 61, 87;
  --grey: #dbe8ff;
}

.visually-hidden:not(:focus):not(active) {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}

a {
  text-decoration: none;
  color: var(--dark);
}
a.link__disabled span {
  color: inherit;
}
a.link__disabled svg {
  fill: var(--grey);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.body {
  font-family: "Arial", sans-serif;
  font-size: 16px;
  line-height: 20px;
  color: var(--dark);
  font-style: normal;
  font-weight: 400;
}

.main {
  display: flex;
}

.main-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100vh;
  flex-grow: 1;
  background-image: url("/local/templates/russwimming/img/vfp-background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: top center;
  max-width: calc(100% - 300px);
}

.content {
  padding: 50px 30px 30px 30px;
  width: 100%;
  margin: 0 auto;
}

.container {
  padding: 0 30px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.title {
  font-family: "Gilroy", "Arial", sans-serif;
  font-size: 30px;
  line-height: 34px;
  font-weight: 700;
  margin: 0 0 50px 0;
}

.title__marker {
  color: var(--blue);
  text-decoration: underline;
}

.block {
  margin: 0 0 50px 0;
}

.block--small {
  margin: 0 0 30px 0;
}

.block__body--white {
  background-color: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
}
.block__body--white .media__text {
  padding: 30px 0 0 0;
}

.block__body--radius-bottom {
  border-radius: 0 0 20px 20px;
}

.block__header {
  min-height: 70px;
  padding: 15px 30px;
  color: var(--white);
  font-family: "Gilroy", "Arial", sans-serif;
  font-weight: 900;
  font-size: 30px;
  line-height: 34px;
  background: var(--blue-gradient-revert);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  text-align: center;
}

.block__header--small {
  font-size: 18px;
  line-height: 22px;
}

.block__header--left {
  text-align: left;
  justify-content: flex-start;
}

.block__title {
  margin: 0 0 30px 0;
}

.block__container {
  max-width: 800px;
  margin: 0 auto;
}

.button {
  font-family: "Gilroy", "Arial", sans-serif;
  width: 100%;
  max-width: 280px;
  height: 60px;
  text-align: center;
  padding: 0 20px;
  color: var(--white);
  font-size: 16px;
  line-height: 20px;
  font-weight: 700;
  outline: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-transform: uppercase;
  border-radius: 14px;
  background: var(--blue-gradient);
  cursor: pointer;
}

.buttons {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
  margin: 0 0 40px;
}

.form-search {
  margin: 0 0 50px;
}
.form-search .button {
  max-width: 170px;
}

.button--red {
  background: var(--red-gradient);
}

.button__icon {
  flex-shrink: 0;
}

.button--small {
  height: 40px;
  border-radius: 5px;
  max-width: 160px;
}

.button--opacity {
  background: none;
  border: 2px solid var(--dark);
  color: var(--dark);
}

.button--center {
  margin: 0 auto;
}

.button--radius-none {
  border-radius: 0;
}

.link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.link__disabled {
  pointer-events: none;
  cursor: default;
  color: var(--grey);
}

.link__text {
  font-family: "Gilroy", "Arial", sans-serif;
  font-size: 18px;
  line-height: 24px;
  color: var(--blue);
  position: relative;
  text-decoration: underline;
}

.link__icon {
  fill: var(--blue);
  margin: 0 0 0 5px;
}

.heading {
  font-size: 24px;
  line-height: 28px;
  font-family: "Gilroy", "Arial", sans-serif;
  font-weight: 700;
  margin: 0 0 30px 0;
}

.aside {
  width: 300px;
  flex-shrink: 0;
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  z-index: 99;
}

.aside__hamburger {
  display: none;
}

.aside__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0 50px 0;
  position: relative;
  flex-shrink: 0;
}

.aside-search__icon {
  stroke: var(--white);
}

.logo__img {
  display: block;
}

.logo__mobile {
  display: none;
}

.aside__content {
  background: var(--blue-gradient);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.navigation {
  margin: 0 0 20px 0;
  position: relative;
  z-index: 1;
}

.navigation__icon-container {
  overflow: hidden;
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: -1;
}

.navigation__icon {
  position: relative;
  width: calc(100% + 2px);
  left: -1px;
  height: auto;
  max-width: unset;
}

.navigation__item {
  position: relative;
}
.navigation__item:not(:last-child) .navigation__wrapper:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 25px;
  width: calc(100% - 50px);
  height: 1px;
  background-color: rgba(var(--white-opacity), 0.5);
}
.navigation__item:hover .navigation__link {
  background-color: var(--white);
  color: var(--blue);
  transition: 0.2s;
}
.navigation__item:hover .navigation__wrapper:after {
  width: 100% !important;
  left: 0 !important;
}
.navigation__item:first-child .drop-menu {
  bottom: auto;
  top: 0;
}

.navigation__link {
  display: flex;
  align-items: center;
  width: 100%;
  font-family: "Gilroy", "Arial", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  font-size: 15px;
  letter-spacing: 0.5px;
}

.navigation__wrapper {
  width: 100%;
  padding: 20px 25px;
  position: relative;
}

.drop-menu {
  position: absolute;
  width: 256px;
  background-color: var(--blue);
  bottom: 0;
  right: -256px;
  padding: 20px 0;
  transform: translateX(-4px);
  opacity: 0;
  transition: all 0.4s;
  visibility: hidden;
  box-shadow: 0 6px 6px rgba(var(--black-opacity), 0.2);
}

.drop-menu__link {
  color: var(--white);
  font-family: "Gilroy", "Arial", sans-serif;
  font-size: 14px;
  line-height: 18px;
  padding: 10px 30px;
  text-transform: uppercase;
  display: block;
  cursor: pointer;
}
.drop-menu__link:hover {
  background-color: var(--dark-blue);
  transition: 0.3s;
}

.js-has-drop-menu:hover > .drop-menu {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.4s;
  visibility: visible;
}

.socials {
  display: flex;
  align-items: center;
}

.socials__icon {
  fill: var(--white);
}

.socials__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

.socials--color .socials__icon {
  fill: var(--light-blue);
}

.socials--center {
  justify-content: center;
}

.aside__socials {
  padding: 0 27px;
  margin: auto 0 40px 0;
}
.aside__socials .socials {
  margin: 0 auto;
  justify-content: center;
}

.aside-search {
  padding: 0 40px;
  margin: 0 0 30px 0;
}

.aside-search__form {
  margin: 0 auto;
  border-bottom: 1px solid rgba(var(--white-opacity), 0.5);
}

.aside-search__button,
.aside-search__input {
  background-color: transparent;
  outline: none;
  border: none;
}

.aside-search__input {
  color: var(--white);
  font-size: 14px;
  width: calc(100% - 30px);
  text-transform: uppercase;
  color: var(--white);
}
.aside-search__input:-moz-placeholder {
  color: var(--white);
  font-family: "Gilroy", "Arial", sans-serif;
}
.aside-search__input::-moz-placeholder {
  color: var(--white);
  font-family: "Gilroy", "Arial", sans-serif;
}
.aside-search__input:-ms-input-placeholder {
  color: var(--white);
  font-family: "Gilroy", "Arial", sans-serif;
}
.aside-search__input::-webkit-input-placeholder {
  color: var(--white);
  font-family: "Gilroy", "Arial", sans-serif;
}

.aside-search__button {
  cursor: pointer;
}

.footer {
  margin: auto 0 0 0;
  font-family: "Gilroy", "Arial", sans-serif;
  color: rgba(var(--white-opacity), 0.7);
  z-index: 1;
  overflow: hidden;
}

.footer__wrapper {
  padding: 70px 0 47px 0;
  position: relative;
  background: var(--blue-gradient-revert);
}
.footer__wrapper:after {
  content: "";
  position: absolute;
  right: 0;
  top: -120px;
  width: 2px;
  height: 120px;
  background: var(--blue);
}

.footer__icon {
  position: absolute;
  left: -1px;
  top: -120px;
  width: calc(100% + 4px);
  height: auto;
  z-index: -1;
}

.footer__container {
  max-width: 1440px;
  padding: 0 30px;
  margin: 0 auto;
}

.footer__navigation {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 20px;
  margin: 0 0 20px 0;
}

.footer__block {
  margin: 0 0 25px 0;
}

.footer__block--double {
  grid-column: span 2;
}

.footer__item {
  display: block;
  font-size: 18px;
  line-height: 22px;
  margin: 0 0 10px 0;
  color: rgba(var(--white-opacity), 0.7);
}

.footer__title {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  margin: 0 0 25px 0;
  text-transform: uppercase;
  color: var(--white);
}
.footer__title:last-child {
  margin: 0;
}

.footer__more {
  display: flex;
  align-items: center;
}

.footer__link {
  color: var(--white);
  text-decoration: underline;
}

.footer__link-icon {
  fill: var(--white);
  margin: 0 0 0 5px;
}

.footer__about {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.footer__about-text {
  font-size: 16px;
  line-height: 20px;
  margin: 0 0 10px 0;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}

.footer__bottom-text:not(:last-child) {
  margin: 0 0 5px 0;
}

.footer__column--mobile {
  display: none;
}

.promo__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 40px;
}

.promo__column {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.promo__body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.promo__item {
  margin: 0 0 50px 0;
}

.promo__link {
  display: flex;
}

.promo__content {
  width: 100%;
}

.promo__img {
  display: block;
  margin: 0 18px 0 0;
}

.promo__date {
  text-transform: uppercase;
  padding: 0 0 12px 0;
  margin: 0 0 12px 0;
  color: var(--blue);
  position: relative;
}
.promo__date:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--blue-gradient);
}

.promo__text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 72px;
  line-height: 18px;
}

.promo .link {
  margin: auto 0 0 0;
}

.subscription__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 20px;
}

.subscription__picture {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.subscription__img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 0 20px 0;
}

.subscription__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.subscription__title {
  font-family: "Gilroy", "Arial", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: var(--grey-dark);
  text-align: center;
}

.subscription__text {
  font-family: "Gilroy", "Arial", sans-serif;
  color: var(--blue);
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  max-width: 360px;
  margin: 0 0 40px 0;
}

.subscription__button {
  font-size: 20px;
  line-height: 24px;
  max-width: 350px;
}

.subscription__logo {
  margin: 0 0 40px 0;
}

.subscription__item--mobile {
  display: none;
}

.socials-main__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.socials-main__link {
  display: block;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.socials-main__img {
  display: block;
  z-index: 1;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  transition: border-radius 0.3s ease;
}
.socials-main__img:hover {
  scale: 1.05;
  filter: brightness(1.5);
  transition: scale 0.3s ease, filter 0.3s ease;
}
.socials-main__img:not(:hover) {
  scale: 1;
  filter: brightness(1);
  transition: scale 0.3s ease, filter 0.3s ease;
}

.socials-main__tag {
  font-family: "Gilroy", "Arial", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 30px;
  text-align: center;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.socials-main__text {
  font-family: "Gilroy", "Arial", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  text-align: center;
  max-width: 260px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-calendar__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin: 0 0 30px 0;
}

.main-calendar__item--big-mobile {
  display: none;
}

.main-calendar__item--big {
  grid-column: 1/5;
}

.main-calendar__link {
  display: block;
}

.main-calendar__picture {
  display: block;
}

.main-calendar__img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
}

.birthday__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.birthday__item {
  background: var(--color-gradient);
  border-radius: 20px;
  box-shadow: 0 15px 20px rgba(var(--black-opacity), 0.1);
}

.birthday__link {
  display: flex;
  align-items: center;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background-color: var(--white);
  padding: 30px 40px;
  border-radius: 20px;
  position: relative;
  top: 2px;
  left: 2px;
}

.birthday__img {
  display: block;
  margin: 0 40px 0 0;
  border-radius: 50%;
}

.birthday__title {
  font-family: "Gilroy", "Arial", sans-serif;
  font-size: 24px;
  line-height: 28px;
  color: var(--blue);
  font-weight: 700;
  margin: 0 0 10px 0;
}

.birthday__text {
  font-size: 24px;
  line-height: 28px;
}

.leaders__title {
  font-family: "Gilroy", "Arial", sans-serif;
  font-size: 30px;
  line-height: 34px;
  font-weight: 900;
  color: var(--blue);
  text-align: center;
  margin: 0 0 30px 0;
}

.leaders__container,
.leaders__list {
  display: grid;
  grid-template-columns: repeat(2, calc((100% - 20px) / 2));
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.leaders__container {
  margin: 0 0 30px 0;
}

.leaders__link {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  background: var(--blue-gradient-revert);
  padding: 30px 20px;
}

.leaders__subtitle {
  color: var(--white);
  font-size: 24px;
  line-height: 28px;
  margin: 0 0 15px 0;
  text-align: center;
}

.leaders__img {
  display: block;
  border-radius: 50%;
  width: 100%;
  max-width: 260px;
  height: auto;
  margin: 0 auto 20px auto;
}

.leaders__content {
  background-color: var(--white);
  border-radius: 15px;
  padding: 10px;
  font-family: "Gilroy", "Arial", sans-serif;
}

.leaders__name {
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.leaders__firstname,
.leaders__lastname {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.leaders__text {
  font-size: 18px;
  line-height: 22px;
  color: var(--blue);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sponsors__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1240px;
  margin: 0 auto;
  align-items: center;
}

.sponsors__item {
  margin-right: calc((100% - 850px) / 4);
}

.sponsors__item--first {
  margin-right: calc((100% - 970px) / 4);
}
.sponsors__item--first .sponsors__img {
  width: 180px;
  max-width: 180px;
}

.sponsors__item:nth-child(5n),
.sponsors__item:last-child {
  margin: 0;
}

.sponsors__link,
.sponsors__img {
  display: block;
}

.sponsors__link {
  padding: 15px 10px;
}

.sponsors__img {
  margin: 0 0 10px 0;
  max-width: 150px;
  height: auto;
}

.sponsors__text {
  max-width: 150px;
  font-size: 10px;
  line-height: 12px;
  text-align: center;
}

.partners {
  padding: 10px 30px;
}

.partners__list {
  display: flex;
  align-items: center;
  gap: 15px;
}

.partners__item {
  display: flex;
  align-items: center;
}

.partners__link {
  display: flex;
  align-items: center;
}

.partners__img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}

.news-slider {
  height: calc(100vh - 70px);
  position: relative;
  max-width: calc(100vw - 300px);
  overflow: hidden;
}
.news-slider .marquee {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.news-slider__item {
  height: calc(100vh - 70px);
  background-size: cover;
  background-position: center; /* добавить для лучшего позиционирования */
  background-repeat: no-repeat;
  z-index: 1;
  padding: 190px 30px 30px 30px;
}
.news-slider__item:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--blue-gradient-revert);
  z-index: -1;
}

.news-slider__controls {
  display: flex;
  flex-direction: column;
  position: absolute;
  z-index: 3;
  right: 30px;
  top: 210px;
  border-radius: 50%;
}

.news-slider__arrow {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  margin: 0 0 60px 0;
  outline: none;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.news-slider__arrow svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}
.news-slider__arrow:hover svg {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.news-slider__arrow--right {
  background: var(--blue);
}

.news-slider__arrow-icon {
  stroke: var(--white);
}

.news-slider__link {
  z-index: 2;
  color: var(--white);
}

.news-slider__title {
  font-family: "Gilroy", "Arial", sans-serif;
  font-weight: 900;
  font-size: 50px;
  line-height: 55px;
  max-width: 750px;
  margin: 0 0 20px 0;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  filter: drop-shadow(-1px -1px 0 var(--blue)) drop-shadow(1px -1px 0 var(--blue)) drop-shadow(-1px 1px 0 var(--blue)) drop-shadow(1px 1px 0 var(--blue));
  max-height: 275px;
}

.news-slider__text {
  font-size: 24px;
  line-height: 28px;
  max-width: 560px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 84px;
}

.marquee {
  width: 100%;
  height: 32px;
  line-height: 32px;
  padding: 0 10px;
}

.marquee__holder {
  overflow: hidden;
}

.marquee__content {
  display: inline-block;
  padding-left: 100%;
  white-space: nowrap;
  font-size: 14px;
  animation: marquee 40s linear infinite;
  color: #fff;
}
.marquee__content a {
  text-decoration: underline;
  color: inherit;
}

@keyframes marquee {
  0% {
    transform: translatex(0);
  }
  100% {
    transform: translatex(-100%);
  }
}
.news-slider .top {
  position: absolute;
  top: 50px;
  right: 10px;
}

.top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 2;
}
.top .socials {
  margin: 0 60px 0 0;
}

.top__login,
.aside__login {
  display: flex;
  align-items: center;
  font-family: "Gilroy", "Arial", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--white);
}

.top__login-icon,
.aside__login-icon {
  margin: 0 5px 5px 0;
}

.aside__login {
  display: none;
}

.top .button,
.top__contacts {
  min-height: 70px;
  padding: 15px 15px;
  background: var(--blue-gradient-revert);
  border-radius: 10px;
  align-items: center;
}

.top__contacts-item:first-child {
  margin: 0 0 5px 0;
}

.top__contacts-link {
  display: flex;
  align-items: center;
  color: var(--white);
  font-size: 18px;
  line-height: 22px;
}

.top__contacts-picture {
  width: 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px 0 0;
}

.top__contacts-icon {
  fill: var(--white);
}

.links {
  width: 100%;
  min-height: 290px;
  background-size: cover;
  position: absolute;
  bottom: 0;
  z-index: 2;
  padding: 100px 30px 30px 30px;
}

.links__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.links__link {
  display: flex;
  align-items: center;
  color: var(--white);
  padding: 12px;
  border-radius: 10px;
  background-color: rgba(var(--black-opacity), 0.6);
  transition: transform 0.3s ease, filter 0.3s ease;
}
.links__link:hover {
  transform: scale(1.03);
  filter: brightness(1.2);
}
.links__link:hover .links__img {
  filter: brightness(1);
}

.links__img {
  display: block;
  margin: 0 20px 0 0;
  max-width: 140px;
  width: 40%;
  height: auto;
  flex-shrink: 0;
  border-radius: 10px;
}
.links__img:hover {
  scale: 1.05;
  filter: brightness(1.5);
  transition: scale 0.3s ease, filter 0.3s ease;
}
.links__link .links__img:hover {
  transform: none;
}
.links__img:not(:hover) {
  scale: 1;
  filter: brightness(1);
  transition: scale 0.3s ease, filter 0.3s ease;
}

.links__text {
  font-size: 22px;
  line-height: 24px;
  font-weight: 700;
}

.head {
  background: var(--blue-gradient-revert);
  color: var(--white);
}
.head .top {
  margin: 0 0 36px 0;
}

.head__container {
  padding: 50px 30px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.head__title {
  font-family: "Gilroy", "Arial", sans-serif;
  font-size: 50px;
  line-height: 60px;
  font-weight: 700;
  margin: 0;
}

.tabs__navigation {
  display: flex;
}

.tabs__item {
  cursor: pointer;
}

.tabs__link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.tabs__pane {
  display: none;
}

.tabs__pane--active {
  display: block;
}

.tabs-main .tabs__container {
  background: var(--white);
}
.tabs-main .tabs__container .tabs__navigation {
  padding: 0 30px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.tabs-main .tabs__container .tabs__item {
  max-width: 230px;
  margin: 0 50px 0 0;
  cursor: pointer;
}
.tabs-main .tabs__container .tabs__item:last-child {
  margin: 0;
}
.tabs-main .tabs__container .tabs__link {
  display: inline-flex;
  font-family: "Gilroy", "Arial", sans-serif;
  color: rgba(var(--dark-opacity), 0.3);
  font-weight: 900;
  font-size: 16px;
  line-height: 20px;
  transition: 0.2s;
  height: 134px;
}
.tabs-main .tabs__container .tabs__item--active .tabs__link::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 8px;
  background: var(--red-gradient);
  bottom: 0;
  left: 0;
}

.tabs-main .tabs__container .tabs__item--active .tabs__link,
.tabs-main .tabs__container .tabs__link:hover {
  color: var(--dark);
  transition: 0.2s;
}

.tabs-color .tabs__item {
  flex-basis: 690px;
}
.tabs-color .tabs__navigation {
  border-bottom: 2px solid var(--grey);
}
.tabs-color .tabs__link {
  background: var(--blue-gradient-revert);
  font-family: "Gilroy", "Arial", sans-serif;
  color: var(--white);
  font-size: 18px;
  line-height: 22px;
  border-radius: 16px 16px 0 0;
  height: 70px;
  padding: 0 20px;
  transition: 0.2s;
}
.tabs-color .tabs__item--active .tabs__link {
  background: var(--white);
  color: var(--blue);
  font-weight: 700;
  transition: 0.2s;
}
.tabs-color .tabs__text {
  text-align: center;
}

.tabs-color--no-border .tabs__navigation {
  border: unset;
}

.news-list__item {
  margin: 0 0 40px 0;
  border-radius: 20px;
  box-shadow: 0 15px 20px 0 rgba(var(--black-opacity), 0.05);
}
.news-list__item:last-child {
  margin: 0;
}

.news-list__link {
  display: flex;
}

.news-list__picture {
  position: relative;
  flex-shrink: 0;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
}

.flag {
  position: absolute;
  top: 0;
  left: 0;
  width: 111px;
  height: 41px;
  font-family: "Gilroy", "Arial", sans-serif;
  font-size: 12px;
  line-height: 34px;
  color: var(--white);
  text-transform: uppercase;
  text-align: center;
  background: url("/local/templates/russwimming/img/flags/flag-red.svg");
  background-size: cover;
  background-repeat: no-repeat;
}

.flag--blue {
  background-image: url("/local/templates/russwimming/img/flags/flag-blue.svg");
}

.flag--gray {
  background-image: url("/local/templates/russwimming/img/flags/flag-gray.svg");
}

.flag__text {
  margin: 0 0 0 -10px;
}

.news-list__img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.news-list__content {
  background: var(--white);
  padding: 26px 30px 22px 30px;
  display: flex;
  flex-direction: column;
  border-radius: 0 20px 20px 0;
  flex-grow: 1;
}

.search .news-list__content {
  border-radius: 20px;
}

.news-list__date {
  font-family: "Gilroy", "Arial", sans-serif;
  color: var(--red);
  font-size: 20px;
  line-height: 24px;
  margin: 0 0 14px 0;
}

.news-list__container {
  max-height: 128px;
  overflow: hidden;
}

.programs-list .news-list__container {
  max-height: 200px;
}
.programs-list .news-list__content {
  justify-content: center;
}

.news-list__title {
  font-size: 20px;
  line-height: 24px;
  color: var(--blue);
  margin: 0 0 14px 0;
}

.news-list__text {
  font-size: 18px;
  line-height: 22px;
}

.selection {
  background-color: rgba(var(--light-blue-opacity), 0.8);
  background-color: rgba(var(--light-blue-opacity), 0.8);
  border-radius: 2px;
}

.tags {
  margin: auto 0 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0 0;
}

.tags__item {
  border: 1px solid var(--light-blue);
  min-width: 130px;
  max-width: 390px;
  padding: 7px 15px;
  font-family: "Gilroy", "Arial", sans-serif;
  font-size: 12px;
  line-height: 14px;
  color: var(--light-blue);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tags__item--red {
  color: var(--red);
  border: 1px solid var(--red);
}

.videos__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 0 0 40px 0;
}

.videos__item {
  display: flex;
}

.videos__link {
  display: block;
  position: relative;
}

.videos__content {
  position: absolute;
  left: 0;
  bottom: 0;
  color: var(--white);
  display: flex;
  align-items: flex-end;
  padding: 50px 20px 20px 20px;
  width: 100%;
  height: 160px;
  -webkit-clip-path: url(#wave);
          clip-path: url(#wave);
  background: rgba(0, 164, 211, 0.2);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  background-size: cover;
}

.videos__picture {
  display: block;
}

.videos__img {
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
  height: auto;
}

.videos__info {
  flex-grow: 1;
}

.videos__title {
  font-family: "Gilroy", "Arial", sans-serif;
  font-size: 24px;
  line-height: 28px;
  margin: 0 0 20px 0;
  max-width: 400px;
  display: flex;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  -webkit-box-pack: center;
  overflow: hidden;
}

.videos__text {
  max-width: 400px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  -webkit-box-pack: center;
  overflow: hidden;
}

.videos__time {
  background: #202020;
  line-height: 30px;
  min-width: 70px;
  text-align: center;
  padding: 0 10px;
  margin: 0 0 20px 0;
}

.pagination__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 15px;
}

.white-block .pagination__list {
  margin: 0;
}

.pagination__double-arrow,
.pagination__arrow {
  stroke: var(--blue);
}

.pagination__arrow--left,
.pagination__double-arrow--right {
  transform: rotate(180deg);
}

.pagination__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--blue);
  font-family: "Gilroy", "Arial", sans-serif;
  font-size: 20px;
  line-height: 22px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s;
  outline: none;
}

.pagination__item {
  margin: 0 0 10px 0;
}

.pagination__item--number {
  margin: 0 7px;
}
.pagination__item--number .pagination__link {
  box-shadow: 0 4px 4px rgba(var(--black-opacity), 0.25);
  background-color: var(--white);
}

.pagination__item--active .pagination__link {
  background-color: var(--blue);
  color: var(--white);
  box-shadow: none;
  transition: 0.2s;
}

.pagination__item--disabled .pagination__double-arrow,
.pagination__item--disabled .pagination__arrow {
  stroke: #bdbdbd;
}

.photos__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 0 40px 0;
}

.photos__link {
  display: block;
  position: relative;
  height: 100%;
  width: 100%;
}

.photos__content {
  position: absolute;
  bottom: 0;
  color: var(--white);
  display: flex;
  align-items: flex-end;
  padding: 44px 20px 20px 20px;
  width: 100%;
  height: 115px;
  -webkit-clip-path: url(#wave);
          clip-path: url(#wave);
  background: rgba(0, 164, 211, 0.2);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  background-size: cover;
}

.photos__img {
  display: block;
  display: block;
  width: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 250px;
}

.photos__title {
  font-family: "Gilroy", "Arial", sans-serif;
  font-size: 18px;
  line-height: 22px;
  display: flex;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  -webkit-box-pack: center;
  overflow: hidden;
}

.main-media__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.main-media__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 30px 0;
}

.main-media__title {
  font-family: "Gilroy", "Arial", sans-serif;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
}

.main-media__photos-list {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 30px;
}

.main-media .photos__item {
  height: 100%;
}
.main-media .photos__item:nth-child(3) {
  display: none;
}
.main-media .photos__img {
  height: 100%;
}
.main-media .photos__title {
  font-size: 24px;
  line-height: 28px;
}
.main-media .photos__content {
  height: 160px;
  padding: 44px 20px 34px 20px;
}

.main-media__videos-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.info {
  font-family: "Gilroy", "Arial", sans-serif;
  padding: 30px;
  background-color: var(--white);
  border-radius: 20px;
  margin: 0 0 40px 0;
}

.info__container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
}

.info__content {
  display: flex;
  align-items: center;
}

.info__picture {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  flex-shrink: 0;
  margin: 0 114px 0 0;
  box-shadow: 0 10px 10px rgba(var(--black-opacity), 0.15);
}

.info__img {
  display: block;
}

.info__list {
  display: flex;
  flex-direction: column;
}

.info__item {
  display: flex;
  align-items: center;
  min-height: 46px;
}

.info__link {
  color: var(--blue);
}

.info__unit {
  width: 250px;
  flex-shrink: 0;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  padding: 0 50px 0 0;
}

.info__value {
  font-size: 18px;
  line-height: 22px;
}

.info__documents {
  display: flex;
}

.info__documents-link,
.info__documents-icon {
  display: block;
}

.info__documents-item {
  margin: 0 16px 0 0;
}

.info__documents-icon {
  box-shadow: 0 4px 4px 0 rgba(var(--black-opacity), 0.25);
  border-radius: 5px;
}

.info__mail {
  color: var(--light-blue);
}

.info-text {
  font-family: "Gilroy", "Arial", sans-serif;
  margin: 0 0 30px 0;
  background-color: var(--pale-blue);
  border-radius: 20px;
  text-align: center;
  padding: 20px;
}

.info-text__link {
  color: var(--blue);
}

.documents__item {
  display: flex;
  min-height: 120px;
  margin: 0 0 20px 0;
  box-shadow: 0 15px 20px 0 rgba(var(--black-opacity), 0.05);
  border-radius: 20px;
  background-color: var(--white);
}

.documents__info,
.documents__download {
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.documents__download {
  cursor: pointer;
}

.documents__icon {
  display: block;
  margin: 0 0 10px 0;
}

.documents__date {
  color: var(--blue);
  font-family: "Gilroy", "Arial", sans-serif;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
}

.documents__content {
  display: flex;
  align-items: center;
  padding: 36px 100px;
  background-color: #f2f2f2;
  flex-grow: 1;
}

.documents__title {
  font-family: "Gilroy", "Arial", sans-serif;
  font-size: 20px;
  line-height: 26px;
  color: var(--blue);
}

.documents__download-icon-mobile {
  display: none;
}

.persons__list {
  display: grid;
  grid-template-columns: repeat(4, 290px);
  justify-content: space-between;
  gap: 70px 20px;
}

.persons__item {
  font-family: "Gilroy", "Arial", sans-serif;
  min-height: 444px;
  display: flex;
}

.persons__link {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.persons__content {
  background: var(--blue-gradient);
  padding: 30px 20px 20px 20px;
  border-radius: 20px 20px 0 0;
  box-shadow: 0 20px 50px 0 rgba(var(--black-opacity), 0.1);
  min-height: 346px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.persons__img {
  display: block;
  border-radius: 50%;
  margin: 0 auto 14px auto;
}

.persons__title {
  border-radius: 15px;
  background-color: var(--white);
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  padding: 10px 15px;
  margin: 0 0 10px 0;
  text-align: center;
  height: 68px;
  display: flex;
  align-items: center;
}

.persons__info {
  color: #EBFAFF;
  font-size: 16px;
  line-height: 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
}

.persons__text {
  padding: 0 0 10px 0;
}

.persons__bottom {
  background-color: var(--white);
  border-radius: 0 0 20px 20px;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  text-align: center;
  padding: 20px 10px;
  box-shadow: 0 20px 50px 0 rgba(var(--black-opacity), 0.1);
}

.persons--small .persons__img {
  width: 124px;
  height: 124px;
}
.persons--small .persons__content {
  padding: 30px 20px 0 20px;
}

.persons__number,
.persons__mail {
  display: block;
}

.persons--contacts .persons__bottom {
  font-size: 16px;
  line-height: 28px;
}

.persons__phone {
  text-transform: uppercase;
}

.persons__number {
  font-weight: 400;
}

.persons__mail {
  color: var(--light-blue);
  text-transform: uppercase;
  font-size: 12px;
}

.profile {
  background-color: var(--white);
  border-radius: 20px;
  margin: 0 0 30px 0;
}

.profile__container {
  max-width: 1050px;
  margin: 0 auto;
  display: flex;
  padding: 40px 15px;
  position: relative;
  z-index: 1;
}
.profile__container:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("../img/vfp-logo-small.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.07;
  z-index: -1;
  top: 0;
  left: 0;
}

.profile__info {
  width: 300px;
  flex-shrink: 0;
  margin: 0 100px 0 0;
}

.profile__img {
  display: block;
  border-radius: 50%;
  margin: 0 0 30px 0;
}

.medals {
  display: flex;
  justify-content: center;
  margin: 0 0 25px 0;
}

.medals__item {
  margin: 0 17px;
  position: relative;
}

.medals__icon {
  display: block;
  border-radius: 50%;
  box-shadow: 0 4px 6px 6px rgba(var(--black-opacity), 0.06);
}

.medals__number {
  position: absolute;
  top: 0;
  right: -5px;
  width: 22px;
  height: 22px;
  background-color: var(--white);
  border: 1px solid var(--blue);
  color: var(--blue);
  font-family: "Gilroy", "Arial", sans-serif;
  font-size: 11px;
  line-height: 22px;
  text-align: center;
  border-radius: 50%;
}

.profile__content {
  flex-grow: 1;
}

.profile__title {
  font-family: "Gilroy", "Arial", sans-serif;
  font-size: 30px;
  line-height: 34px;
  font-weight: 700;
  margin: 0 0 30px 0;
}

.profile__item {
  display: flex;
  align-items: center;
  height: 60px;
  border-bottom: 1px solid rgba(194, 194, 194, 0.5);
}

.profile__unit {
  width: 260px;
  flex-shrink: 0;
  color: var(--light-blue);
  padding: 10px;
  text-transform: lowercase;
}

.profile__value {
  color: var(--blue);
  font-family: "Gilroy", "Arial", sans-serif;
  font-size: 18px;
  line-height: 22px;
  padding: 10px;
}
.profile__value a {
  color: var(--blue);
}

.scroll-table {
  margin: 0 0 40px 0;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Gilroy", "Arial", sans-serif;
  font-size: 18px;
  line-height: 22px;
  vertical-align: middle;
}

.table__head,
.table__row {
  height: 60px;
}

.table__head {
  background-color: var(--white);
  color: #828282;
}
.table__head .table__cell {
  font-weight: 400;
}

.table__cell {
  padding: 5px 10px;
  text-align: center;
  vertical-align: middle;
  position: relative;
}
.table__cell:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: var(--white);
}

.table__cell--left {
  text-align: left;
}

.table__cell--nowrap {
  white-space: nowrap;
}

.table__cell--bold {
  font-weight: 700;
}

.table__cell:last-child:after,
.table--no-border .table__cell:after,
.table__number:after {
  display: none;
}

.table__row:nth-child(2n) {
  background-color: rgba(235, 250, 255, 0.7);
}
.table__row:nth-child(2n+1) {
  background-color: rgba(var(--white-opacity), 0.7);
}

.table__number {
  width: 50px;
}

.table__img {
  display: block;
  margin: 0 30px 0 0;
}

.table__img--circle {
  border-radius: 50%;
}

.table__link {
  display: flex;
  align-items: center;
}

.table__text {
  color: var(--blue);
  font-size: 18px;
  font-weight: 700;
  text-align: left;
}

.table--big .table__row {
  height: 80px;
}
.table--big .table__cell {
  padding: 10px;
}

.table__person .table__text {
  min-width: 200px;
}

.table-results__place {
  max-width: 300px;
}

.table-medals__container {
  max-width: 300px;
  margin: 0 auto;
}

.table-medals__item {
  height: 36px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--white);
  white-space: nowrap;
}
.table-medals__item:last-child {
  border-bottom: none;
}

.table-medals__tournament {
  color: var(--light-blue);
  cursor: pointer;
}

.table-calendar__date,
.table-calendar__place,
.table-calendar__results {
  min-width: 250px;
  width: 20%;
}

.table-calendar__event {
  width: 40%;
  min-width: 350px;
}

.table-calendar__date {
  white-space: nowrap;
}

.table__documents {
  display: flex;
  align-items: center;
  justify-content: center;
}

.table__documents-item {
  margin: 0 10px;
}

.table-rating__person {
  width: 300px;
}

.table-schools {
  font-size: 16px;
}

.table-schools__title {
  width: 600px;
}

.table-schools__address {
  width: 250px;
}

.table-schools__director {
  width: 250px;
}

.table-schools__director-link {
  display: block;
}

.table-schools__pool {
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.contacts-block {
  display: inline-block;
  margin: 0 auto;
}

.contacts-block__phone,
.contacts-block__mail {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.contacts-block__icon {
  margin: 0 5px 0 0;
  fill: var(--light-blue);
}

.contacts-block__mail {
  text-decoration: underline;
}

.files__list {
  display: grid;
  grid-template-columns: repeat(5, 196px);
  justify-content: space-between;
  gap: 40px 20px;
}

.files__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.files__icon {
  display: block;
  margin: 0 0 20px 0;
}

.files__title {
  font-family: "Gilroy", "Arial", sans-serif;
  font-size: 18px;
  line-height: 22px;
  margin: 0 0 20px 0;
  text-align: center;
  display: flex;
  justify-content: center;
  display: -webkit-box;
  -webkit-box-pack: center;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.files__number {
  font-size: 16px;
  line-height: 18px;
  color: var(--blue);
  margin: auto 0 0 0;
}

.form-filters {
  margin: 0 0 40px 0;
}

.filters-container {
  display: grid;
  grid-template-columns: auto 300px;
  gap: 40px;
}

.filters {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  background: linear-gradient(175deg, var(--white), var(--blue), var(--red));
  margin: 0 0 40px 0;
  border-radius: 5px;
}

.filters--dual {
  margin: 0 0 20px 0;
}

.filters__list {
  display: flex;
  align-items: center;
  height: 56px;
  width: calc(100% - 4px);
  border-radius: 3px;
  background-color: var(--white);
}

.filters__item {
  width: 100%;
  max-width: 300px;
  border-right: 1px solid var(--grey);
}
.filters__item:last-child {
  border-right: none;
}

.filters__item--grow {
  max-width: unset;
  flex-grow: 1;
}

.filters__input-container {
  display: flex;
  background-color: var(--white);
}

.filters__input {
  max-width: calc(100% - 60px);
  border: none;
  height: 50px;
  flex-grow: 1;
  font-family: "Arial", sans-serif;
  color: var(--dark);
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
  padding: 0 0 0 20px;
  outline: none;
  background-color: unset;
}
.filters__input::-moz-placeholder {
  color: var(--dark);
  font-family: "Arial", sans-serif;
  font-size: 18px;
  opacity: 1;
}
.filters__input::placeholder {
  color: var(--dark);
  font-family: "Arial", sans-serif;
  font-size: 18px;
  opacity: 1;
}
.filters__input:-moz-placeholder {
  color: var(--dark);
  font-family: "Arial", sans-serif;
  font-size: 18px;
  opacity: 1;
}
.filters__input::-moz-placeholder {
  color: var(--dark);
  font-family: "Arial", sans-serif;
  font-size: 18px;
  opacity: 1;
}
.filters__input:-ms-input-placeholder {
  color: var(--dark);
  font-family: "Arial", sans-serif;
  font-size: 18px;
  opacity: 1;
}
.filters__input::-webkit-input-placeholder {
  color: var(--dark);
  font-family: "Arial", sans-serif;
  font-size: 18px;
  opacity: 1;
}

.filters__button {
  flex-shrink: 0;
  width: 60px;
  border: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: unset;
  cursor: pointer;
}

.filters__burger {
  display: none;
}

.filters__button-icon {
  stroke: var(--white);
}

.form__radio {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 20px 0 0;
}

.form__radio--left {
  justify-content: flex-start;
}

.form__radio-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0 0 0 40px;
}

.form__radio-input {
  display: none;
}
.form__radio-input:checked + .form__radio-indicator::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: var(--red);
  border-radius: 50%;
  top: 50%;
  margin-top: -6px;
  left: 50%;
  margin-left: -6px;
}

.form__radio-indicator {
  width: 22px;
  height: 22px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}

.form__radio--blue .form__radio-input:checked + .form__radio-indicator::after {
  background-color: var(--blue);
}

.form__radio-text {
  font-family: "Gilroy", "Arial", sans-serif;
  margin: 0 0 0 20px;
  color: var(--blue);
}

.checkbox {
  font-size: 18px;
  line-height: 22px;
  cursor: pointer;
}
.checkbox .form__label {
  cursor: pointer;
  margin: 0;
}

.checkbox__container {
  display: flex;
  align-items: center;
}

.checkbox__input {
  display: none;
}
.checkbox__input:checked + .checkbox__indicator:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("/local/templates/russwimming/img/check.svg") no-repeat center;
}

.checkbox__indicator {
  flex-shrink: 0;
  position: relative;
  width: 20px;
  height: 20px;
  margin: 0 15px 0 0;
  background: var(--blue-gradient-revert);
  border-radius: 4px;
}

.dropdown {
  cursor: pointer;
  position: relative;
}
.dropdown select {
  display: none;
}
.dropdown.js-open .dropdown__title:after {
  transform: rotate(180deg);
  transition: 0.2s;
}

.dropdown__title {
  font-size: 18px;
  line-height: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  height: 50px;
  outline: none;
  position: relative;
}
.dropdown__title:after {
  display: block;
  content: url("/local/templates/russwimming/img/arrow.svg");
  position: absolute;
  right: 20px;
  top: 50%;
  margin-top: -9px;
  transition: 0.2s;
  fill: var(--red-dark);
}
.dropdown__title .dropdown__link {
  padding: 5px 40px 5px 20px;
  min-height: unset;
  max-height: 42px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-box-pack: center;
}

.dropdown__options {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  width: 100%;
  z-index: 99;
  top: 50px;
  left: 0;
  background-color: var(--white);
  display: none;
}
.dropdown__options .dropdown__link:after {
  content: "";
  position: absolute;
  top: 0;
  left: 15px;
  width: calc(100% - 30px);
  height: 1px;
  background: var(--grey);
}
.dropdown__options .dropdown__link:hover {
  background: var(--blue-gradient);
  color: var(--white);
  transition: 0.3s;
}
.dropdown__options .dropdown__link:hover:after {
  display: none;
}

.dropdown__link {
  display: flex;
  align-items: center;
  min-height: 70px;
  padding: 5px 30px;
  transition: 0.3s;
  position: relative;
  width: 100%;
}

.contacts {
  color: var(--grey-dark);
  font-size: 14px;
  line-height: 16px;
}

.contacts__container {
  display: flex;
}

.contacts__content {
  width: 520px;
  padding: 0 50px 0 0;
}

.contacts__map {
  flex-grow: 1;
}

.contacts__main {
  margin: 0 0 30px 0;
}

.contacts__main-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.contacts__title,
.contacts__text {
  margin: 0 0 15px 0;
}

.contacts__title {
  display: flex;
}

.contacts__title-text {
  font-family: "Gilroy", "Arial", sans-serif;
  font-weight: 900;
  font-size: 24px;
  line-height: 28px;
  color: var(--blue);
  margin: 0 5px 0 0;
}

.contacts__text {
  font-weight: 700;
  font-size: 18px;
  line-height: 22px;
}

.contacts__icon {
  margin: 0 5px 0 0;
}

.contacts__item:not(:last-child) {
  margin: 0 0 25px 0;
}

.contacts__unit {
  color: var(--blue);
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  margin: 0 0 3px 0;
}

.contacts__mail {
  text-decoration: underline;
}

.news {
  font-family: "Gilroy", "Arial", sans-serif;
}
.news .share {
  position: absolute;
  top: 0;
  left: 80px;
}

.news__date {
  font-size: 30px;
  line-height: 35px;
  font-weight: 700;
  color: var(--blue);
  margin: 0 0 30px 0;
}

.news-theme__picture-tag {
  display: block;
}

.news__picture {
  position: relative;
  display: block;
  margin: 0 0 30px 0;
}

.news__img {
  display: block;
  max-width: 100%;
  height: auto;
}

.news__content {
  max-width: 800px;
  margin: 0 auto;
}

.page__text {
  max-width: 1000px;
  margin: 0 auto;
}

.news__title {
  font-size: 36px;
  line-height: 42px;
  margin: 0 0 30px 0;
  color: var(--blue);
}

.news__main {
  position: relative;
}

.share {
  margin: 0 0 40px 0;
}

.news-theme__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 0 70px 0;
}

.news-theme__link,
.news-theme__img {
  display: block;
}

.news-theme__picture {
  position: relative;
}
.news-theme__picture:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(var(--black-opacity), 0.6));
}

.news-theme__img {
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-theme__title {
  color: var(--white);
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 20px;
  z-index: 2;
}

.news-theme__subtitle {
  font-family: "Gilroy", "Arial", sans-serif;
  color: var(--blue);
  max-width: 400px;
  margin: 0 auto 30px auto;
  font-weight: 700;
  text-align: center;
}

.news-theme__subscription-container {
  display: flex;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.news-theme__button {
  margin: 0 0 0 30px;
  max-width: 300px;
}

.news-theme__subscription .form__group {
  flex-grow: 1;
  width: 100%;
}

.base {
  font-family: "Gilroy", "Arial", sans-serif;
}

.base__title {
  font-size: 36px;
  line-height: 42px;
  margin: 0 0 30px 0;
  color: var(--blue);
}

.base__picture {
  display: block;
  margin: 0 0 30px 0;
}

.base__img {
  display: block;
  max-width: 100%;
  height: auto;
}

.base__content {
  max-width: 800px;
  margin: 0 auto;
}

.base__info {
  margin: 0 0 30px 0;
}

.base__address {
  display: block;
  font-size: 24px;
  line-height: 28px;
  font-weight: 700;
  margin: 0 0 10px 0;
}
.base__address:last-child {
  margin: 0;
}

.form__input,
.form__textarea {
  width: 100%;
  height: 60px;
  background-color: #F6F6F6;
  padding: 0 20px;
  font-size: 14px;
  color: var(--grey-dark);
  font-family: "Arial", sans-serif;
  border: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.rating .form__input,
.rating .form__textarea {
  background-color: #ffffff;
}

.form__textarea {
  width: 100%;
  height: auto;
  padding: 10px 20px;
}

.form__input:-moz-placeholder,
.form__textarea:-moz-placeholder {
  color: rgba(var(--grey-dark-opacity), 50%);
  font-family: "Arial", sans-serif;
}

.form__input::-moz-placeholder,
.form__textarea::-moz-placeholder {
  color: rgba(var(--grey-dark-opacity), 50%);
  font-family: "Arial", sans-serif;
}

.form__input:-ms-input-placeholder,
.form__textarea:-ms-input-placeholder {
  color: rgba(var(--grey-dark-opacity), 50%);
  font-family: "Arial", sans-serif;
}

.form__input::-webkit-input-placeholder,
.form__textarea::-webkit-input-placeholder {
  color: rgba(var(--grey-dark-opacity), 50%);
  font-family: "Arial", sans-serif;
}

.form__group {
  margin: 0 0 14px 0;
  position: relative;
}

.form__help,
.form__error {
  font-size: 10px;
  line-height: 12px;
  color: var(--red);
  min-height: 20px;
  padding: 8px 0 0 0;
}

.form__success {
  color: var(--blue);
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  text-align: center;
  width: 100%;
  margin: 20px 0 0 0;
}

.form__success-text {
  margin: 0 0 20px 0;
}

.feedback__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 30px;
       column-gap: 30px;
}

.feedback__item--textarea {
  grid-row: span 2;
}
.feedback__item--textarea .form__textarea {
  height: 155px;
}

.form__captcha {
  display: flex;
  justify-content: center;
}

.form__policy {
  text-align: center;
  margin: 0 0 20px 0;
}

.form__policy-link {
  color: var(--blue);
}

.form-search__flex {
  display: flex;
  align-items: stretch;
  border-radius: 5px;
  overflow: hidden;
  background-color: var(--white);
}

.form-search__icon {
  margin: auto 70px;
  flex-shrink: 0;
  stroke: var(--blue);
}

.media__title {
  font-family: "Gilroy", "Arial", sans-serif;
  font-size: 30px;
  line-height: 34px;
  font-weight: 700;
  margin: 0 0 20px 0;
}

.media__date {
  font-size: 24px;
  line-height: 28px;
  margin: 0 0 40px 0;
  color: var(--blue);
  font-weight: 700;
}

.media__text {
  background-color: var(--white);
  padding: 30px;
  font-size: 20px;
  line-height: 24px;
  color: var(--blue);
}

.media__video {
  position: relative;
  padding-bottom: 58.25%;
  height: 0;
  overflow: hidden;
}
.media__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-width: 0;
  outline-width: 0;
}

.banner__link,
.banner__img {
  display: block;
}

.banner__img {
  border-radius: 20px;
  max-width: 100%;
  height: auto;
}

.bases__item {
  margin: 0 0 40px 0;
  border-radius: 20px;
  box-shadow: 0 15px 20px 0 rgba(var(--black-opacity), 0.05);
}
.bases__item:last-child {
  margin: 0;
}

.bases__link {
  display: flex;
}

.bases__picture {
  position: relative;
  flex-shrink: 0;
  border-radius: 20px 0 0 20px;
  overflow: hidden;
}

.bases__img {
  display: block;
  max-width: 462px;
  height: auto;
}

.bases__content {
  background: var(--white);
  padding: 22px 30px;
  display: flex;
  flex-direction: column;
  border-radius: 0 20px 20px 0;
  flex-grow: 1;
}

.bases__title {
  font-family: "Gilroy", "Arial", sans-serif;
  font-size: 24px;
  line-height: 28px;
  margin: 0 0 20px 0;
  color: var(--blue);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bases__text {
  margin: 0 0 20px 0;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.bases__address {
  display: flex;
}

.bases__subtitle {
  font-size: 20px;
  line-height: 24px;
  flex-shrink: 0;
  font-weight: 700;
  margin: 0 20px 0 0;
}

.bases__contacts {
  line-height: 24px;
}

.modal {
  display: none;
  outline: none;
  width: 100%;
  max-width: 390px;
  background-color: var(--white);
  border-radius: 20px;
  padding: 70px 30px 30px 30px;
  z-index: 10000;
  position: fixed;
  top: 30vh;
  left: 50%;
  margin-left: -195px;
}

.modal__title {
  font-weight: 700;
  color: #525252;
  font-family: "Gilroy", "Arial", sans-serif;
  font-size: 40px;
  line-height: 44px;
  margin: 0 0 20px 0;
  text-align: center;
}

.modal__text {
  font-family: "Gilroy", "Arial", sans-serif;
  text-align: center;
  margin: 0 auto 20px auto;
  max-width: 250px;
}

.modal__close {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
  padding: 20px;
}

.modal__close-icon {
  fill: var(--blue);
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: rgba(var(--dark-opacity), 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.modal-form__button {
  margin: 0 auto;
  max-width: 100%;
}

.regions__close-icon {
  fill: var(--blue);
}

.regions__block {
  position: relative;
}

.regions__popup {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(var(--white-opacity), 0.7);
  padding: 50px 30px 20px 30px;
  min-width: 690px;
}

.regions__close {
  display: block;
  padding: 15px;
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
}

.regions__link {
  display: block;
  position: relative;
  padding: 7px 30px 7px 30px;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
}
.regions__link:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -4px;
  width: 8px;
  height: 8px;
  background-color: var(--blue);
  border-radius: 50%;
}

.table-olympic .table__cell {
  width: 20%;
}

.rating__top {
  margin: 0 0 30px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rating__container {
  display: flex;
  align-items: center;
}

.rating__block {
  display: flex;
  align-items: center;
  margin: 0 50px 0 0;
}
.rating__block .border {
  width: 160px;
  height: 44px;
}

.rating__block-half {
  display: flex;
  align-items: center;
}
.rating__block-half:first-child {
  margin: 0 20px 0 0;
}

.rating__block-text {
  white-space: nowrap;
  margin: 0 20px 0 0;
  font-size: 18px;
  line-height: 22px;
  font-family: "Gilroy", "Arial", sans-serif;
}

.rating__block--age .border {
  width: 60px;
}

.rating__checkbox {
  margin: 0 50px 0 0;
}

.border {
  background: linear-gradient(175deg, var(--white), var(--blue), var(--red));
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.border .form__input {
  width: calc(100% - 4px);
  border-radius: 3px;
  height: 40px;
}

.datepicker {
  position: relative;
}
.datepicker::after {
  position: absolute;
  right: 10px;
  display: block;
  content: url("../img/calendar.svg");
  width: 20px;
  height: 20px;
  top: calc(50% - 10px);
  cursor: text;
}

.press__list {
  display: grid;
  gap: 40px 30px;
  grid-template-columns: repeat(5, minmax(170px, 240px));
}

.press__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.press__link,
.press__img {
  display: block;
}

.press__link {
  margin: 0 0 14px 0;
}

.press__img {
  filter: drop-shadow(0px 20px 20px rgba(var(--black-opacity), 0.1));
}

.press__title {
  font-weight: 700;
  margin: 0 0 14px 0;
}

.table-referee-competitions__position {
  max-width: 240px;
}

[data-empty]:empty {
  position: relative;
  text-align: center;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 24px;
  font-weight: 700;
}
[data-empty]:empty:after {
  content: attr(data-empty);
}

.table-records__logo {
  width: 170px;
}

.table-records__links {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}

.table-records__link {
  padding: 5px;
  color: var(--light-blue);
  font-size: 20px;
  line-height: 24px;
  text-decoration: underline;
}
.table-records__link:hover {
  color: var(--blue);
  transition: 0.3s;
}

.table-records__cell {
  width: 29%;
  padding: 10px;
}

.table-records__text {
  text-align: left;
  text-transform: uppercase;
}

.table-records__text--bold {
  font-weight: 700;
}

.table-records__img--white {
  background-color: var(--white);
  padding: 10px;
}

.table-records__head-cell {
  text-transform: uppercase;
}

.error {
  max-width: 550px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.error__title {
  font-size: 48px;
  line-height: 50px;
  color: var(--blue);
  margin: 0 0 40px;
}

.error__link {
  display: block;
  margin: 0 0 40px;
  flex-shrink: 0;
}

.error__logo {
  flex-shrink: 0;
}

.error__text {
  font-size: 18px;
  line-height: 24px;
  color: var(--dark);
  margin: 0 0 20px;
}

.games__img {
  width: 170px;
  height: 170px;
}

.slider--news .slider__list {
  display: flex;
}
.slider--news .slider__nav {
  display: flex;
  justify-content: center;
}
.slider--news .slider__nav-item {
  padding: 20px;
  cursor: pointer;
}
.slider--news .slider__nav-item:before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background-color: var(--light-blue);
  border-radius: 50%;
  transition: 0.3s;
}

.slider--news .slider__nav-item:hover:before,
.slider--news .slider__nav-item.tns-nav-active:before {
  background-color: var(--blue);
  transition: 0.3s;
}

.main-media__block {
  display: flex;
  flex-direction: column;
}

.qv-container .fancybox-outer {
  height: 100%;
  position: relative;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  transition-property: opacity;
}
.qv-container .fancybox-inner {
  width: 75vw;
  max-width: 800px;
  background: #fff;
  position: relative;
  height: 75vh;
  margin: 20px auto 0 auto;
  border-bottom: 1px solid #e9e9e9;
}

.qv-close {
  position: absolute;
  top: 0px;
  right: 0;
  width: 44px;
  height: 44px;
  background: #F0F0F0;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font: normal 14px Arial;
  color: #222;
  text-indent: -99999px;
  transition: all 0.2s;
  z-index: 99997;
}
.qv-close:hover {
  background: #e4e4e4;
}
.qv-close:before {
  transform: rotate(-45deg);
}
.qv-close:after {
  transform: rotate(45deg);
}

.qv-close::before,
.qv-close::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 22px;
  width: 1px;
  height: 18px;
  background-color: #222;
}

.fancybox-is-open.qv-container .fancybox-outer {
  opacity: 1;
}

.slider--media {
  position: relative;
}
.slider--media .slider__list {
  margin: 0 0 15px !important;
  padding: 0 !important;
  display: flex;
}
.slider--media .slider__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.slider--media .slider__arrows-link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: calc(50% - 35px);
  padding: 15px;
  background-color: rgba(var(--grey-dark-opacity), 0.2);
  cursor: pointer;
}
.slider--media .slider__arrows-link:hover .slider__arrow {
  stroke: var(--dark-blue);
  transition: 0.3s;
}
.slider--media .slider__arrows-link--left {
  left: 0;
}
.slider--media .slider__arrows-link--left .slider__arrow {
  transform: rotate(180deg);
}
.slider--media .slider__arrows-link--right {
  right: 0;
}
.slider--media .slider__arrow {
  stroke: var(--blue);
}
.slider--media .slider__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 0 25px !important;
  padding: 0 !important;
  list-style: none !important;
}
.slider--media .slider__nav-item {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  cursor: pointer;
  border: 1px solid var(--white);
  background-color: var(--grey);
}

.slider--media .slider__nav-item.tns-nav-active,
.slider--media .slider__nav-item:hover {
  background-color: var(--grey-dark);
  transition: 0.3s;
}

.editor_dialog .content {
  padding: 0;
}
.editor_dialog .title {
  margin: 0;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.2em;
}

/* Сброс стилей для всех уровней меню */
.navigation__list,
.navigation__list ul,
.drop-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.navigation__item,
.navigation__item li,
.drop-menu__item {
  list-style-type: none;
  list-style-image: none;
  margin: 0;
  padding: 0;
}

/* Стили для всех ссылок в меню */
.navigation__link,
.drop-menu__link {
  text-decoration: none;
  display: block;
  position: relative;
}

/* Стили для wrapper'а с кнопкой */
.navigation__wrapper {
  position: relative;
  padding-right: 30px;
  display: flex;
  align-items: center;
}

/* Стили для кнопки переключения */
.drop-menu__toggle {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
}

/* Стили для первого уровня подменю */
.navigation__item > .drop-menu {
  position: absolute;
  width: 256px;
  background-color: var(--blue);
  right: -256px;
  top: 0;
  transform: translateX(-4px);
  opacity: 0;
  transition: all 0.4s;
  visibility: hidden;
  box-shadow: 0 6px 6px rgba(var(--black-opacity), 0.2);
  z-index: 100; /* Добавляем z-index */
}

/* Стили для второго и последующих уровней */
.drop-menu .drop-menu {
  position: absolute;
  width: 256px;
  background-color: var(--blue);
  left: 100%; /* Размещаем справа от родителя */
  top: -20px; /* Компенсируем padding родителя */
  opacity: 0;
  transition: all 0.4s;
  visibility: hidden;
  box-shadow: 0 6px 6px rgba(var(--black-opacity), 0.2);
  z-index: 101; /* Увеличиваем z-index для каждого следующего уровня */
}

/* Стили для отображения подменю при наведении */
.js-has-drop-menu:hover > .drop-menu {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

/* Позиционирование элементов подменю */
.drop-menu__item {
  position: relative; /* Важно для правильного позиционирования вложенных подменю */
  background-color: var(--blue); /* Добавляем фон для каждого элемента */
}

/* Стили для ссылок в подменю */
.drop-menu__link {
  color: var(--white);
  font-family: "Gilroy", "Arial", sans-serif;
  font-size: 14px;
  line-height: 18px;
  padding: 10px 30px;
  text-transform: uppercase;
  display: block;
  cursor: pointer;
  background-color: var(--blue); /* Добавляем фон для ссылок */
}
.drop-menu__link:hover {
  background-color: var(--dark-blue);
  transition: 0.3s;
}

/* Обеспечиваем видимость фона при наведении */
.js-has-drop-menu:hover .drop-menu {
  background-color: var(--blue);
}/*# sourceMappingURL=style.css.map */